home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / alpha.arc / CONFIG.H < prev    next >
Text File  |  1988-07-26  |  1KB  |  36 lines

  1. /* Software options */
  2. #define    SERVERS        1    /* Include TCP servers */
  3. #define    TRACE        1    /* Include packet tracing code */
  4. #define    NSESSIONS    10    /* Number of interactive clients */
  5.  
  6. /* Hardware configuration */
  7. #define    PC_EC        1    /* 3-Com 3C501 Ethernet controller */
  8. #define    SLIP        1    /* Serial line IP */
  9. #define    KISS        1    /* KISS TNC code */
  10. #define    HAPN        1    /* Hamilton Area Packet Network driver code */
  11. #define    EAGLE        1    /* Eagle card driver */
  12. #define    PACKET        1    /* FTP Software's Packet Driver interface */
  13. #undef    PC100        1    /* PAC-COM PC-100 driver code */
  14. #undef    APPLETALK    1    /* Appletalk interface (Macintosh) */
  15. #define    NRS        1    /* NET/ROM async interface */
  16. #define    NETROM        1    /* NET/ROM network support */
  17.  
  18. #if (defined(NRS))
  19. #undef    NETROM
  20. #define    NETROM        1    /* NRS implies NETROM */
  21. #endif
  22.  
  23. #if (defined(NETROM)||defined(KISS)||defined(HAPN)||defined(EAGLE)||defined(PC100))
  24. #define    AX25        1        /* AX.25 subnet code */
  25. #endif
  26.  
  27. /* KISS TNC, SLIP, NRS or PACKET implies ASY */
  28. #if (defined(KISS) || defined(PACKET) || defined(NRS) || defined(SLIP))
  29. #undef    ASY
  30. #define    ASY        1    /* Asynch driver code */
  31. #endif
  32.  
  33. #if (defined(PC_EC) || defined(PACKET))
  34. #define    ETHER    1        /* Generic Ethernet code */
  35. #endif
  36.